home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / shear.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-02-21  |  481 b   |  21 lines

  1. /*
  2.   ImageMagick Image Stream Methods.
  3. */
  4. #ifndef _MAGICK_SHEAR_H
  5. #define _MAGICK_SHEAR_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. extern MagickExport Image
  12.   *AffineTransformImage(const Image *,const AffineMatrix *,ExceptionInfo *),
  13.   *RotateImage(const Image *,const double,ExceptionInfo *),
  14.   *ShearImage(const Image *,const double,const double,ExceptionInfo *);
  15.  
  16. #if defined(__cplusplus) || defined(c_plusplus)
  17. }
  18. #endif
  19.  
  20. #endif
  21.